/* 导航栏 */
body {
    padding: 0;
    margin: 0;
    position: relative;
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

p {
    margin: 0;
}

/* 头部 */
.header {
    width: 100%;
    height: 100px;
    background-color: #e6002e;
    position: sticky;
    top: 0;
    z-index: 999;
   
}

.header .header-menu {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.header .header-menu .left-logo {
    width: 190px;
    height: 42px;
    position: absolute;
    left: 0;
    top: 29px;
    background: url('/images/menulogo.png');
    background-size: 100% 100%;

}

.header .header-menu .centent-menu {
    display: block;
    position: absolute;
    right: 275px;
    padding: 0;
    margin: 0;
    height: 100%;
}

.header .header-menu .centent-menu .menu-item {
    display: inline-block;
    list-style: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-left: 30px;
    position: relative;
}

.header .header-menu .centent-menu .menu-item:after {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 1px;
    background-color: #fff;
    height: 7px;
    left: 0;
    border-radius: 50px;
    opacity: 0;
}

.Header-bg {
    width: 100%;
    height: 0px;
    transition: 0.3s;
    position: absolute;
    left: 0;
    top: 100px;
    background: #FFF;
    z-index: -1;
    opacity: 0.9;
}
    .header .header-menu .centent-menu .menu-item .sub-list {
        display: none;
        width: 100%;
        
    }
    .header .header-menu .centent-menu .menu-item:hover .sub-list {
        display: block;
        transition: 0.3s;
    }

    .header .header-menu .centent-menu .menu-item .sub-list {
        text-align: center;
        position: absolute;
        width: 160px;
        left: 50%;
        margin-left: -80px;
        display: none;
        line-height: 45px;
        padding-top: 20px;
    }

        .header .header-menu .centent-menu .menu-item .sub-list li a:hover {
            opacity: 1;
        }

        .header .header-menu .centent-menu .menu-item .sub-list li a {
            opacity: 0.7;
            color:#000;
            font-size:15px;
        }









.header .header-menu .centent-menu .menu-item.show-inside-nav:after {
    opacity: 1;
}

.header .header-menu .centent-menu .menu-item:hover:after {
    transition: 0.4s;
    opacity: 1;
}

.header .header-menu .centent-menu .menu-item .menu-item-title {
    color: #fff;
    line-height: 100px;
}
    .header .header-menu .centent-menu .menu-item .header-inside-nav {
        display:none
    }

.header .header-menu .centent-menu .menu-item:hover .header-inside-nav {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
}

.header .header-menu .centent-menu .menu-item .header-inside-nav {
    width: auto;
    position: absolute;
    background-color: #fff;
    white-space: nowrap;
    padding: 25px;
    box-sizing: border-box;
    z-index: 444;
    left: -50%;
    transform: translatex(-20%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content {
    width: auto;
    min-width: 200px;
}

.header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .inside_nav_title {
    color: #333333;
    line-height: 0;
    font-size: 16px;
    position: relative;
}

.arrow-icon {
    display: none;
}

.header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .line {
    height: 1px;
    position: relative;
    background: #ccc;
    margin-top: 10px;
}

.header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .line .inside_line {
    height: 1px;
    width: 50px;
    background: #e6002e;
    position: absolute;
    top: 0;
    left: 0;
}

.header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .inside_nav_list {
    width: 100%;
    padding-top: 5px;
}

.header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .inside_nav_list .list-item {
    display: block;
    width: auto;
    margin-top: 20px;
    line-height: 24px;
}

.header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .inside_nav_list .list-item:hover {
    transform: translateX(-6px);
}

.header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .inside_nav_list .list-item:hover .item {
    color: #e6002e;
}

.header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .inside_nav_list .list-item .iconfont {
    margin-right: 10px;
    font-size: 14px;
    color: #aaa;
    width: 2px;
    height: 14px;
    background: #e6002e;
    display: inline-block;
    margin-top: 5px;
}

.header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .inside_nav_list .list-item .item {
    line-height: 24px;
    font-size: 14px;
}

.header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .item {
    color: #666;
}

.header .header-menu .right-setting {
    position: absolute;
    right: 0;
    top: 34px;
    display: flex;
    align-items: center;
}

.header .header-menu .right-setting .search-input {
    width: 160px;
    height: 31px;
    border: 1px solid #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

.header .header-menu .right-setting .search-input img {
    cursor: pointer;
}

.header .header-menu .right-setting .search-input input {
    width: 110px;
    border: none;
    outline: none;
    margin-left: 17px;
    background-color: #e6002e;
    color: #fff;
}

.header .header-menu .right-setting .search-input  input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

.header .header-menu .right-setting .search-input  input::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

.header .header-menu .right-setting .search-input  input:-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

.header .header-menu .right-setting .search-input  input:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}

.header .header-menu .right-setting .language-btn {
    margin-left: 18px;
    color: #fff;
    cursor: pointer;
}

.header .header-menu .right-setting .language-btn::after {
    content: 'English';
    font-size: 16px;
    font-weight: bold;
}

.header .header-menu .right-setting .search-btn {
    display: none;
}

.banner {
    width: 100%;
    height: auto;
}

.banner img {
    width: 100%;
    height: 110%;
}

@media screen and (max-width: 1250px) {
    .header .header-menu .left-logo {
        top: 34px;
        width: 160px;
        height: 35px;
    }

    .header .header-menu {
        width: 95%;
    }

    .header .header-menu .centent-menu {
        right: 270px;
    }

    .header .header-menu .centent-menu .menu-item {
        margin-left: 28px;
        font-size: 15px;
    }
}

@media screen and (max-width: 1000px) {
    .header .header-menu .left-logo {
        width: 130px;
        height: 30px;
    }

    .header .header-menu .centent-menu {
        right: 230px;
    }

    .header .header-menu .centent-menu .menu-item {
        margin-left: 28px;
        font-size: 14px;
    }

    .header .header-menu .right-setting .search-input {
        width: 120px;
        height: 28px;

    }

    .header .header-menu .right-setting .search-input img {
        width: 15px;
    }

    .header .header-menu .right-setting .search-input input {
        width: 70px;
        margin-left: 17px;
        font-size: 12px;
    }
}

@media screen and (max-width: 900px) {


    .header .header-menu .centent-menu {
        right: 200px;
    }

    .header .header-menu .centent-menu .menu-item {
        margin-left: 20px;
        font-size: 12px;
    }

    .header .header-menu .right-setting {
        top: 36px;
    }

    .header .header-menu .right-setting .search-input {
        width: 110px;
        height: 25px;
    }

    .header .header-menu .right-setting .search-input img {
        width: 13px;
    }

    .header .header-menu .right-setting .search-input input {
        width: 70px;
        margin-left: 15px;
    }

    .header .header-menu .right-setting .language-btn {
        font-size: 14px;
        font-weight: bold;
    }
}

@media screen and (max-width: 768px) {
    .header {
        display: block;
        width: 100%;
        height: 1rem;
        background-color: #fff;
        padding-bottom: 5px;
    }

    .header .header-menu .left-logo {
        background: url('/images/menulogo-mobile.png') no-repeat center;
        background-size: 100% 100%;
        top: 15px;
        left: 10px;
    }

    .header .header-menu .centent-menu {
        display: block;
        background-color: #fff;
        position: fixed;
        width: 260px;
        left: 0px;
        top:1rem;
        width: 100%;
        height: 100%;
        z-index: 3;
        overflow: scroll;
        transform: translate(-800px, 0);
        opacity: 0;
        transition: all 0.3s;
    }

    .header .header-menu.active-nav .centent-menu {
        transform: translate(0, 0);
        opacity: 1;
        transition: all 0.3s;
    }

    .header .header-menu .centent-menu .menu-item {
        display: block;
        float: none;
        font-size: 22px;
        height: auto;
        margin-left: 0;
    }

    .header .header-menu .centent-menu .menu-item:after {
        display: none;
    }

    .header .header-menu .centent-menu .menu-item:nth-child(1) {
        display: none;
    }

    .header .header-menu .centent-menu .menu-item .menu-item-title {
        display: none;
    }
        .header .header-menu .centent-menu .menu-item .header-inside-nav {
            display: block
        }

    .header .header-menu .centent-menu .menu-item .header-inside-nav {
        padding: 0;
        left: 0;
        transform: translateX(0%);
        position: static;
        opacity: 1;
        visibility: visible;
    }

    .header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .line {
        margin-top: 0;
        margin-left: 20px;
        margin-right:20px;
    }

    .header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .inside_nav_title {
        font-size: 22px;
        line-height: 80px;
        padding-left: 20px;
    }

    .header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .inside_nav_list {
        height: 0;
        overflow: hidden;
        transition: 0.3s;
    }

    .header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .inside_nav_list.open {
        height: 171px;
        transition: 0.3s;
        padding-left: 20px;
    }

    .header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .inside_nav_list .list-item {
        line-height: 50px;
    }

    .header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .inside_nav_list .list-item .iconfont {
        display: none;
    }

    .header .header-menu .centent-menu .menu-item .header-inside-nav .inside-nav-content .inside_nav_list .list-item .item {
        font-size: 16px;
    }

    .inside-nav-content-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: auto;
    }

    .arrow-icon {
        display: block;
        width: 25px;
        height: 25px;
        margin-right: 20px;
        transition: 0.3s;
    }

    .arrow-icon.rotate {
        transform: rotate(180deg);
    }

    .header .header-menu .right-setting {
        align-items: flex-start;
        top: 15px;
    }

    .header .header-menu .right-setting .language-btn {
        width: 30px;
        height: 30px;
        margin-left: 18px;
        color: #000;
        cursor: pointer;
        border: 1px solid #000;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .header-menu .right-setting .search-input {
        display: none;
    }

    .header .header-menu .right-setting .language-btn::after {
        content: 'En';
        font-size: 20px;
        font-weight: lighter;
    }

    .header .header-menu .right-setting .search-btn {
        display: block;
        width: 30px;
        height: 30px;
        margin-left: 15px;
        cursor: pointer;
    }

    .header .header-menu .right-setting .search-btn img {
        width: 100%;
        height: 100%;
    }

    .nav__trigger {
        width: 35px;
        height: 30px;
        position: relative;
        margin-left: 15px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .nav__trigger .nav-icon{
        width: 100%;
        height: 2px;
        background-color: black;
        transition: all 0.3s;
    }
    .nav__trigger .nav-icon.lastline{
        margin-top: 10px;
    }
    .header .header-menu.active-nav .nav__trigger .nav-icon.oneline {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        transition: all 0.3s;
    }

    .header .header-menu.active-nav .nav__trigger .nav-icon.lastline {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        transition: all 0.3s;
        margin-top: -1px;
    }
}

/* 足部 */
.footer {
    width: 100%;
    position: relative;
}

.footer .footer-top {
    width: 100%;
    background: url('/images/footerBackground.png');
    position: relative;
}

.footer .footer-top .top-content {
    width: 1400px;
    margin: 0 auto;
    height: 220px;
    padding-top: 50px;
    box-sizing: border-box;
}

.footer .footer-top .top-content .topleft {
    color: #fff;
    float: left;
}

.footer .footer-top .top-content .topleft p {
    margin: 0;
    letter-spacing: 1px;
    font-size: 16px;
    margin-top: 8px;
}

.footer .footer-top .top-content .cententmenu {
    display: flex;
    gap: 48px;
    color: #fff;
    font-size: 14px;
    float: left;
    margin-left: 113px;
}

.footer .footer-top .top-content .cententmenu .menu-title {
    font-weight: bold;
}

.footer .footer-top .top-content .cententmenu ul {
    margin-top: 22px;
}

.footer .footer-top .top-content .cententmenu li {
    margin-bottom: 10px;
    position: relative;
}

.footer .footer-top .top-content .cententmenu li a {
    display: inline-block;
    color: #fff;
}
.footer .footer-top .top-content .cententmenu li a::before{
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -5px;
    height: 2px;
    background-color: #fff;
    transition: right 0.3s, left 0.3s;
}
.footer .footer-top .top-content .cententmenu li a:hover::before{
    transition: 0.3s ease-in-out;
    right: 0;
    left: 0;
}
.footer .footer-bottom {
    width: 100%;
    height: auto;
    background-color: #333333;
    display: block;
    padding: 20px 0;
}

    .footer .footer-bottom .bottom-content {
    width: 1400px;
    margin: 0 auto;
    color: #939393;
    font-size: 12px;
    position: relative;
}
    .footer .footer-bottom .bottom-content  p {
        padding: 5px 0px;
    }

    .footer .footer-bottom .bottom-content .con-top .wordsplist {
        display: inline-block;
        margin-right: 7px;
       
    }

.footer .footer-bottom .bottom-content .con-bottom {
    margin-top: 14px;
}

.footer .footer-bottom .bottom-content .con-bottom .wordsplist {
    display: inline-block;
    margin-right: 7px;
}

.footer .footer-bottom .bottom-content .mtechsup {
    opacity: 0;
    visibility: hidden;
}

.footer .footer-bottom .bottom-content .feellongtoys {
    position: absolute;
    bottom: -20px;
    right: 0;
}

@media screen and (max-width: 1500px) {
    .footer .footer-top .top-content {
        width: 90%;
    }

    .footer .footer-bottom .bottom-content {
        width: 90%;
    }

    .footer .footer-bottom .bottom-content .feellongtoys img {
        width: 300px;
    }
}

@media screen and (max-width: 1250px) {
    .footer .feellongtoys {
        display: none;
    }
}

@media screen and (max-width: 930px) {
    .footer .footer-top .top-content .cententmenu {
        margin-left: 50px;
        gap: 30px;
    }
}

@media screen and (max-width: 780px) {
    .footer .footer-top {
        display: none;
    }

    .footer .footer-bottom .bottom-content .con-bottom {
        margin-top: 0;
    }

    .footer .footer-bottom .bottom-content .con-top .technicalsupport {
        display: none;
    }

   

    .footer .footer-bottom .bottom-content .mtechsup {
        opacity: 1;
        visibility: visible;
    }
}




/*--pagingbar--*/
.pagingbar {
    width: 100%;
    height: 26px;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 0;
    float: left;
    font-size: 14px;
}

DIV.blue {
    padding-right: 3px;
    padding-left: 3px;
    padding-bottom: 3px;
    margin: 3px;
    padding-top: 3px;
    text-align: center;
}

    DIV.blue A {
        padding: 0 15px;
        height: 40px;
        line-height: 40px;
        color: #fff;
        display: inline-block;
        color: #fff;
        background-color: #e0e0e0;
        margin: 0 3px;
        -moz-border-radius: 10px;
        -khtml-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
    }

        DIV.blue A:hover {
            background-color: #e60012;
            color: #fff;
        }

        DIV.blue A:active {
            background-color: #e60012;
            color: #fff;
        }

    DIV.blue SPAN.current {
        padding: 0 15px;
        display: inline-block;
        height: 40px;
        line-height: 40px;
        color: #fff;
        margin: 0 3px;
        -moz-border-radius: 10px;
        -khtml-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        background-color: #e60012;
    }

    DIV.blue SPAN.disabled {
        margin: 0px 3px;
        color: #fff;
        text-align: center;
        display: inline-block;
        line-height: 40px;
        padding: 0 15px;
        margin: 0 3px;
        -moz-border-radius: 10px;
        -khtml-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        background-color: #e0e0e0;
        color: #fff;
    }





#searchPage {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100000;
    background: rgba(0,0,0,0.9);
    color: #fff;
    box-sizing: border-box;
    padding: 0.5rem 0.3rem;
}

 #searchPage .inp {
        width: 5rem;
        height: 0.8rem;
        border: 1px solid #fff;
        color: #fff;
        line-height: 0.8rem;
        box-sizing: border-box;
        padding: 0 0.2rem;
        background-color: transparent;
    }

#searchPage .search_icn {
        position: relative;
        top: 0;
        left: 0;
        display: inline-block;
        width: 0.6rem;
        height: 0.6rem;
        float: left;
        margin-top: 0.1rem;
        margin-right: 0.3rem;
    }
#searchPage .search_icn img { width:100%; height:100%        }
#searchPage .search_close {
            position: relative;
            top: 0;
            left: 0;
            display: inline-block;
            width: 0.6rem;
            height: 0.6rem;
            float: right;
            margin-top: 0.1rem;
            margin-left: 0.3rem;
        }
#searchPage .search_close img {
                width: 100%;
                height: 100%
            }




.poster-pc { display:block}
.poster-m {    display: none}


@media screen and (max-width: 930px) {
    .poster-pc {
        display: none
    }

    .poster-m {
        display: block
    }
}
